home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global gVIDEOSPRITE
- set spnum to gVIDEOSPRITE + 1
- set e to the stopTime of sprite spnum
- set OK to 1
- repeat while OK
- set x to the mouseH - the left of sprite gVIDEOSPRITE
- set y to the mouseV - the top of sprite gVIDEOSPRITE
- if (y < 220) or (y > 245) then
- exit
- end if
- set n to the movieTime of sprite spnum
- if x > 268 then
- exit
- else
- if x > 232 then
- set the movieRate of sprite spnum to 0
- set the movieTime of sprite spnum to n + 20
- else
- if x > 201 then
- set the movieRate of sprite spnum to 0
- set the movieTime of sprite spnum to n - 20
- else
- if x > 171 then
- set the movieRate of sprite spnum to 0
- else
- if x > 141 then
- set n to n + 100
- if n > e then
- set n to e - 10
- end if
- set the movieTime of sprite spnum to n
- else
- if x > 111 then
- set the movieRate of sprite spnum to 1
- else
- if x > 81 then
- set n to n - 100
- if n < 1 then
- set n to 1
- end if
- set the movieTime of sprite spnum to n
- else
- if x > 52 then
- set the movieTime of sprite spnum to 0
- set the movieRate of sprite spnum to 1
- else
- if x > 18 then
- LoadMedia(0)
- dontPassEvent()
- end if
- end if
- end if
- end if
- end if
- end if
- end if
- end if
- end if
- updateStage()
- set OK to the mouseDown
- set OK to the mouseDown
- end repeat
- end
-